Basic Library for WPF and Silverlight | ComponentOne
C1.Silverlight Namespace / Trace Class / WriteLine Method / WriteLine(String,Object[]) Method
A composite format string that contains text intermixed with zero or more format items, which correspond to objects in the args array.
An object array containing zero or more objects to format.

In This Topic
    WriteLine(String,Object[]) Method
    In This Topic
    Writes a formatted string followed by a line terminator to the debugger by using the OutputDebugString function.
    Syntax
    'Declaration
     
    
    Public Overloads Shared Sub WriteLine( _
       ByVal format As String, _
       ByVal ParamArray args() As Object _
    ) 
    public static void WriteLine( 
       string format,
       params object[] args
    )

    Parameters

    format
    A composite format string that contains text intermixed with zero or more format items, which correspond to objects in the args array.
    args
    An object array containing zero or more objects to format.
    See Also